home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / KOOB / creator / editor / AIEWorkingDlg.gui < prev    next >
Text File  |  2005-11-23  |  2KB  |  67 lines

  1. //--- OBJECT WRITE BEGIN ---
  2. new GuiControl(AIEWorkingDlg) {
  3.     profile = "GuiModelessDialogProfile";
  4.     horizSizing = "right";
  5.     vertSizing = "bottom";
  6.     position = "0 0";
  7.     extent = "640 480";
  8.     minExtent = "8 8";
  9.     visible = "1";
  10.     setFirstResponder = "0";
  11.     modal = "0";
  12.     helpTag = "0";
  13.  
  14.     new GuiChunkedBitmapCtrl() {
  15.         profile = "GuiContentProfile";
  16.         horizSizing = "right";
  17.         vertSizing = "top";
  18.         position = "234 5";
  19.         extent = "400 130";
  20.         minExtent = "8 8";
  21.         visible = "1";
  22.         setFirstResponder = "0";
  23.         modal = "1";
  24.         helpTag = "0";
  25.  
  26.         new GuiTextCtrl() {
  27.             profile = "GuiBigTextProfile"; 
  28.             horizSizing = "right";
  29.             vertSizing = "bottom";
  30.             position = "16 10";
  31.             extent = "378 40";
  32.             minExtent = "8 8";
  33.             visible = "1";
  34.             setFirstResponder = "0";
  35.             modal = "1";
  36.             helpTag = "0";
  37.             text = "Building Graph ...";
  38.         };
  39.         new GuiProgressCtrl(GraphBuildProgress) {
  40.             profile = "GuiProgressProfile";
  41.             horizSizing = "center";
  42.             vertSizing = "top";
  43.             position = "29 50";
  44.             extent = "342 31";
  45.             minExtent = "8 8";
  46.             visible = "1";
  47.             setFirstResponder = "0";
  48.             modal = "1";
  49.             helpTag = "0";
  50.                 setValue = "0";
  51.         };
  52.         new GuiTextCtrl(GraphCurrentOperation) {
  53.             profile = "GuiTextProfile";
  54.             horizSizing = "right";
  55.             vertSizing = "bottom";
  56.             position = "35 96";
  57.             extent = "8 18";
  58.             minExtent = "8 8";
  59.             visible = "1";
  60.             setFirstResponder = "0";
  61.             modal = "1";
  62.             helpTag = "0";
  63.         };
  64.     };
  65. };
  66. //--- OBJECT WRITE END ---
  67.